home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / tex-k / tex-k-archive.past / tex-k-archive.gz / tex-k-archive / 000935_interran@uluru.Stanford.EDU_Wed Sep 14 06:22:08 1994.msg < prev    next >
Internet Message Format  |  1994-10-11  |  2KB

  1. Received: from uluru.Stanford.EDU by cs.umb.edu with SMTP id AA22765
  2.   (5.65c/IDA-1.4.4 for <tex-k@cs.umb.edu>); Wed, 14 Sep 1994 16:22:10 -0400
  3. Received: by uluru.Stanford.EDU (4.1/inc-1.0)
  4.     id AA01284; Wed, 14 Sep 94 13:22:08 PDT
  5. Date: Wed, 14 Sep 94 13:22:08 PDT
  6. From: interran@uluru.Stanford.EDU (John Interrante)
  7. Message-Id: <9409142022.AA01284@uluru.Stanford.EDU>
  8. To: tex-k@cs.umb.edu
  9. In-Reply-To: <199409141856.OAA02186@apple.cis.ohio-state.edu> (message from Chao-Hui Wu on Wed, 14 Sep 1994 14:56:38 -0400)
  10. Subject: Re: web2c-6.1 installation problem
  11.  
  12. On Wed, 14 Sep 1994 14:56:38 -0400, Chao-Hui Wu <wuc@cis.ohio-state.edu> said:
  13.  
  14. > I tried to install TEX ( Web2c-6.1 ) in SS1 running SunOS 4.1.3 with
  15. > X11R6 and gcc-2.6.0. I run 'configure' and 'make'. At the middle of
  16. > 'make' process, the following error messages apperared:
  17.  
  18. > Any clue how to fix it? Thanks for any information.
  19.  
  20. The following workaround will solve your problem.  In X11R5, one could
  21. link X applications with -lXt -lX11.  In X11R6, one now has to link X
  22. applications with -lXt -lSM -lICE -lX11.  X11R6 came out after
  23. web2c-6.1 was released, so you have to change the Makefile to link mf
  24. with the additional X11R6 libraries if you are using X11R6 instead of
  25. X11R5.  Here's the patch.  (The second part of the patch fixes a
  26. different problem, but you should also apply that change.)
  27.  
  28.         John
  29.  
  30. --- web2c-6.1/web2c/mf/Makefile.in.save    Thu Feb  3 04:48:35 1994
  31. +++ web2c-6.1/web2c/mf/Makefile.in    Mon May  9 00:49:12 1994
  32. @@ -50,4 +50,5 @@
  33.  x_extra_libs = @x_extra_libs@
  34.  wlibs = @wlibs@
  35. +wlibs = -lXt -lSM -lICE -lXext -lX11
  36.  LIBS = @LIBS@
  37.  
  38. @@ -72,6 +73,5 @@
  39.  # What to pass to submakes.
  40.  makeargs=SHELL='$(SHELL)' CC='$(CC)' CFLAGS='$(CFLAGS)' \
  41. -LDFLAGS='$(LDFLAGS)' LIBS='$(libs)' RANLIB='$(RANLIB)' LN='$(LN)' \
  42. -srcdir=$(srcdir)  
  43. +LDFLAGS='$(LDFLAGS)' LIBS='$(libs)' RANLIB='$(RANLIB)' LN='$(LN)'
  44.  
  45.